home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / System 7.0 Samples / CShell⁄THINK C / View.CDEF.a < prev    next >
Encoding:
Text File  |  1991-02-20  |  460 b   |  31 lines  |  [TEXT/MPS ]

  1.         include    'traps.a'
  2. ;
  3. ; Apple Macintosh Developer Technical Support
  4. ;
  5. ; Program:     Kibitz
  6. ; File:        ViewCtl.a
  7. ; Written by:  Eric Soldan
  8. ;
  9. ; Copyright © 1990-1991 Apple Computer, Inc.
  10. ; All rights reserved.
  11. ;
  12. ;
  13.  
  14.         case    on
  15.  
  16.         seg    'ViewCtl'
  17. jmpInstruction    PROC
  18.         import    elsewhere:Code
  19.  
  20.         jsr    mayBreak
  21.         movea.l    procPtr,A0
  22.         jmp    (A0)
  23. procPtr        dc.l    0
  24. mayBreak        rts        ;Put a _Debugger statement in front
  25.                 ;of the rts if you need to break.
  26.  
  27.         ENDP
  28.  
  29.         END 
  30.  
  31.